 :root {
      --primary: #2e7d32;
      --primary-dark: #1b5e20;
      --secondary: #ff9800;
      --light: #f8f9fa;
      --dark: #212121;
      --accent: #4caf50;
    }
    
    body {
      font-family: 'Roboto', sans-serif;
      color: #444;
      background-color: #f5f5f5;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
    }
    
    /* Redesigned Header */
    .navbar {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
      padding: 0.5rem 0;
      transition: all 0.3s ease;
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.6rem;
      color: white !important;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .navbar-brand img {
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar-brand:hover img {
      transform: rotate(5deg);
      border-color: rgba(255, 255, 255, 0.4);
    }
    
    .nav-item {
      position: relative;
      margin: 0 0.2rem;
    }
    
    .nav-link {
      color: rgba(255, 255, 255, 0.9) !important;
      transition: all 0.3s;
      padding: 0.7rem 1.2rem !important;
      border-radius: 8px;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      position: relative;
      display: flex;
      align-items: center;
    }
    
    .nav-link i {
      margin-right: 0.4rem;
      font-size: 1.1rem;
    }
    
    .nav-link:hover, .nav-link.active {
      background-color: rgba(255, 255, 255, 0.15);
      color: white !important;
      transform: translateY(-2px);
    }
    
    .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: var(--secondary);
      border-radius: 10px;
      transform: translateX(-50%);
      transition: all 0.3s ease;
    }
    
    .nav-link:hover::before, .nav-link.active::before {
      width: 70%;
    }
    
    .navbar-toggler {
      border: none;
      padding: 0.4rem 0.6rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
    }
    
    .navbar-toggler:focus {
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      width: 1.2em;
      height: 1.2em;
    }
    
    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }
      
      .nav-item {
        margin: 0.3rem 0;
      }
    }
    
    /* Hero Section */
    .hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/le1.jpg') center/cover;
      color: white;
      padding: 6rem 0;
      position: relative;
    }
    
    .hero-title {
      font-size: 3rem;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 1.5rem auto;
      text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    }
    
    .feature-list {
      text-align: left;
      max-width: 600px;
      margin: 2rem auto;
    }
    
    .feature-list li {
      background-color: rgba(199, 185, 185, 0.1);
      border: none;
      padding: 12px 20px;
      margin-bottom: 10px;
      border-radius: 8px;
      font-weight: 500;
    }



    
    /* Section Headings */
    .section-title {
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 2rem;
      text-align: center;
      color: var(--primary);
      font-weight: 700;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    
    /* Product Cards */
    .product-card {
      transition: all 0.3s ease;
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      margin-bottom: 25px;
      height: 100%;
    }
    
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 20px rgba(235, 229, 229, 0.15);
    }
    
    .product-img {
      height: 200px;
      object-fit: cover;
      width: 100%;
    }
    
    .product-name {
      font-weight: 600;
      color: var(--dark);
      font-size: 1.1rem;
      margin: 0.5rem 0;
    }
    
    .product-type {
      background: var(--light);
      padding: 3px 12px;
      border-radius: 20px;
      font-size: 0.85rem;
      display: inline-block;
      margin: 5px 0;
    }
    
    /* Delivery Cards */
    .delivery-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: all 0.3s;
      height: 100%;
    }
    
    .delivery-card:hover {
      transform: translateY(-5px);
    }
    
    .delivery-img {
      height: 200px;
      object-fit: cover;
    }
    
    /* Testimonials */
    .testimonial-card {
      border: none;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      height: 100%;
      background: white;
    }
    
    .testimonial-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 15px;
      border: 3px solid var(--primary);
    }
    
    .testimonial-rating {
      color: #ffc107;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    
    /* New Posters and Videos Section */
    .posters-videos-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 5rem 0;
      overflow: hidden;
      position: relative;
    }
    
    .post-button {
      position: relative;
      z-index: 10;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border: none;
      color: white;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      transition: all 0.3s;
      display: flex;
      align-items: center;
      margin: 0 auto 3rem;
    }
    
    .post-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    
    .gallery-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 20px 0;
    }
    
    .gallery-track {
      display: flex;
      animation: scroll 40s linear infinite;
      width: calc(250px * 14);
    }
    
    .gallery-track:hover {
      animation-play-state: paused;
    }
    
    .gallery-item {
      height: 300px;
      width: 250px;
      margin: 0 15px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.3s;
      flex-shrink: 0;
      position: relative;
    }
    
    .gallery-item:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    
    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: white;
      padding: 20px 15px 15px;
      transform: translateY(100%);
      transition: transform 0.3s;
    }
    
    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }
    
    .gallery-title {
      font-size: 1.1rem;
      margin-bottom: 5px;
      font-weight: 600;
    }
    
    .gallery-desc {
      font-size: 0.9rem;
      margin-bottom: 0;
    }
    
    .video-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 3rem;
      color: white;
      opacity: 0.8;
      transition: all 0.3s;
    }
    
    .gallery-item:hover .video-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.1);
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-250px * 7));
      }
    }
    
    /* About Section */
    .about-section {
      background: linear-gradient(to bottom, rgba(46,125,50,0.05), rgba(46,125,50,0.02));
      padding: 5rem 0;
    }
    
    .about-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.05rem;
      line-height: 1.8;
    }
    
    /* Footer */
    .footer {
      background: linear-gradient(to right, var(--dark), #111);
      color: rgba(255,255,255,0.8);
      padding: 3rem 0 2rem;
    }
    
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      color: white;
      font-size: 1.2rem;
      transition: all 0.3s;
      margin: 0 8px;
    }
    
    .social-icon:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .copyright {
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn-primary {
      background: var(--primary);
      border: none;
      padding: 10px 25px;
      font-weight: 500;
      transition: all 0.3s;
    }
    
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
    
    .btn-outline-primary {
      border-color: var(--primary);
      color: var(--primary);
    }
    
    .btn-outline-primary:hover {
      background: var(--primary);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .gallery-item {
        height: 250px;
        width: 200px;
      }
      
      .gallery-track {
        animation: scroll 30s linear infinite;
        width: calc(200px * 14);
      }
      
      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-200px * 7));
        }
      }
    }



    .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #2c3e50;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #3498db;
            border-radius: 2px;
        }
        .product-card {
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
            border-bottom: 3px solid #f1c40f;
        }
        .product-name {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .product-type {
            display: inline-block;
            background: #ecf0f1;
            padding: 4px 12px;
            border-radius: 20px;
            margin: 0 5px 5px 0;
            font-size: 0.85rem;
            color: #7f8c8d;
        }
        .btn-outline-primary {
            border-color: #7a8f9eff;
            color: rgba(224, 25, 25, 1);
        }
        .btn-outline-primary:hover {
            background-color: rgb(23, 194, 37);
            color: white;
        }
        .btn-primary {
            background-color: #1fd62eff;
            border-color: #e74c3c;
        }
        .btn-primary:hover {
            background-color: #2bc064ff;
            border-color: #c0392b;
        }
        .modal-header {
            background-color: #3498db;
            color: white;
        }
        .benefit-icon {
            color: #0261a0ff;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .benefit-item {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }
        .nutrition-facts {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }
        .nutrition-title {
            font-weight: 700;
            color: #2c3e50;
            border-bottom: 2px solid #f1c40f;
            padding-bottom: 8px;
            margin-bottom: 15px;
        }
        .nutrition-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            border-bottom: 1px dotted #dee2e6;
            padding-bottom: 5px;
        }
        .nutrition-value {
            font-weight: 600;
            color: #e74c3c;
        }


        .post-button {
            display: block;
            margin: 0 auto 30px;
            background: linear-gradient(to right, #4CAF50, #2E7D32);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .post-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            background: linear-gradient(to right, #43A047, #1B5E20);
        }
        
        .gallery-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }
        
        .gallery-track {
            display: flex;
            animation: scroll 30s linear infinite;
            width: max-content;
        }
        
        .gallery-item {
            position: relative;
            margin: 0 15px;
            width: 300px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px 15px 15px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-title {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .gallery-desc {
            font-size: 0.85rem;
            margin-bottom: 0;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .modal-content {
            border-radius: 15px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .modal-header {
            background: linear-gradient(to right, #4CAF50, #2E7D32);
            color: white;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        .upload-area {
            border: 2px dashed #ccc;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .upload-area:hover {
            border-color: #4CAF50;
            background-color: #f9f9f9;
        }
        
        .upload-icon {
            font-size: 3rem;
            color: #4CAF50;
            margin-bottom: 15px;
        }
        
        #imagePreview {
            max-width: 100%;
            max-height: 200px;
            margin-top: 15px;
            border-radius: 8px;
            display: none;
        }
        
        .alert {
            border-radius: 10px;
            margin-top: 20px;
        }
        
        

